New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

trials

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

trials

Statistical trials to generate simple outcomes

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Trials

npm status build status dependency status coverage status

Trials is a small library for generating outcomes conforming to simple statistical rules by running repeated trials in these systems.

It can pick from a probability mass function (pmf), do repeated Bernoulli trials for elements in an array, unique Bernoulli trials for every element of an object of key : probability form and more.

Usage

Require and call one of the functions within.

var t = require('trials');
for (var i = 0; i < 10; i += 1) {
  // collect results of 10 trials where we pick exactly one of the object below
  t.singlePmf({
    attack: 0.6,
    runaway: 0.3,
    eatlunch: 0.1
  };
}

Outputs something like this:

runaway
attack
attack
eatlunch
attack
attack
runaway
eatlunch
attack
attack

Results vary based on rolls - this one had more lunches than an average roll.

API

singlePmf(obj)

Takes an object of form key : probability (which acts as the probability mass function for all the keys in the object) and picks exactly one element according the a roll mapped to the mass function. The introduction above has an example of this.

An important thing to note with this function is that the values of the object must sum to 1 for it to represent a proper mass function (and to guarantee a return value).

single(ary)

Takes an Array and picks exactly one element from the array with uniform probability.

for (var i = 0; i < 5; i += 1) t.single(['hi', 'thar', 'miss']);

Example output:

hi
miss
thar
miss
thar

multipleProbs(obj)

Takes an object of individual probabilities, does one Bernoulli trial for each element of the object with the respective probabilities and collects all the keys of the successes.

for (var i = 0; i < 5; i += 1) {
  t.multipleProbs({
    a: 0.4,
    b: 0.4,
    c: 0.1
  });
}

Example output:

[ 'b' ]
[ 'a', 'b' ]
[ 'b' ]
[]
[ 'a', 'b' ]

multiple(ary, p)

Takes an array and a fixed probability, does one Bernoulli trial for each element in the array with the defined uniform probability, and collects all the successes.

for (var i = 0; i < 5; i += 1) t.multiple(['a', 'b', 'c'], 0.4);

Example output:

[ 'a' ]
[ 'a', 'b', 'c' ]
[]
[ 'b', 'c' ]
[ 'b' ]

By virtue of being repeated, independent Bernoulli trials with constant probability; the number of picks from the array follows a Binomial distribution B(ary.length, p).

range(start, end)

Gets an integer in the range start to (and including) end with uniform probability. Equivalent to single on the array [start, start+1, ... , end], but more efficient.

cluster(ary, max, p)

Cluster picks {1, 2, ..., max} elements uniformly from the array with probability p, or it picks none at all with probability 1-p.

This is essentially a uniform distribution within a uniform distribution. It's uniform in that we either pick or don't pick with probability p, and if we pick, then how many we pick is uniformly distributed in the defined range. This creates the clusters, rather than true randomness.

for (var i = 0; i < 5; i += 1) t.cluster([1, 2, 3, 4, 5], 3, 0.6);

Example output:

[ 2, 1 ]
[ 4, 1, 5 ]
[ 1 ]
[]
[ 3, 1, 4 ]
[ 2 ]

Installation

$ npm install trials

License

MIT-Licensed. See LICENSE file for details.

Keywords

FAQs

Package last updated on 13 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc